home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Tool Chest / Dev.CD Feb 97 TC.toast / Sample Code / Interapplication Communication / 7Edit 3.1 / Sources / SVAECopy.h < prev    next >
Encoding:
Text File  |  1995-11-20  |  522 b   |  26 lines  |  [TEXT/CWIE]

  1. // SVAECopy.h
  2. //
  3. // 7Edit 3.1d1. Original version by Jon Lansdell and Nigel Humphreys.
  4. // 3.1 updates by Greg Sutton.
  5. // ©Apple Computer Inc 1995, all rights reserved.
  6.  
  7. #ifndef __SVAECOPY__
  8. #define __SVAECOPY__
  9.  
  10. #include <AppleEvents.h>
  11. #include <AEObjects.h>
  12. #include <AERegistry.h>
  13.  
  14. #include "SVToken.h"
  15.  
  16. pascal OSErr    DoCopy(const AppleEvent *theAppleEvent, AppleEvent *reply, long refcon);
  17.  
  18. OSErr            CopyTextToken(TextToken* theToken);
  19. OSErr            CopyTextDesc(AEDesc* textDesc);
  20. OSErr            CopyDesc(AEDesc* aDesc);
  21.  
  22. #endif
  23.  
  24.  
  25.  
  26.